From cb3c7ea192c0bbbbe64c39bda6aec6da99e22380 Mon Sep 17 00:00:00 2001 From: Daniel Plasa Date: Mon, 6 Jul 2020 00:57:20 +0200 Subject: fix silly typo --- FTPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FTPServer.cpp b/FTPServer.cpp index e707589..0e87fba 100644 --- a/FTPServer.cpp +++ b/FTPServer.cpp @@ -681,7 +681,7 @@ int8_t FTPServer::processCommand() if (!file) { file = THEFS.open(path, "w"); // open file, truncate it if already exists - f.close(); // this performs a sync on LittleFS so that the actual + file.close(); // this performs a sync on LittleFS so that the actual // space used by the file in FS gets released file = THEFS.open(path, "w"); // re-open file for writing } -- cgit v1.2.3